home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-19 | 1.5 KB | 71 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-94 by Apple Computer, Inc., all rights reserved.
- #ifndef _CANVAS_
- #define _CANVAS_
-
- #ifndef _CANVASB_
- #include "CanvasB.idl" // base class
- #endif
-
- //==============================================================================
- // Classes defined in this interface
- //==============================================================================
-
- interface ODCanvas;
-
- //==============================================================================
- // Classes used in this interface
- //==============================================================================
-
- interface ODPart;
- interface ODFacet;
- interface ODShape;
-
-
- //==============================================================================
- // ODCanvas
- //==============================================================================
-
- interface ODCanvas : ODBaseCanvas
- {
-
- void InitCanvas(in ODGraphicsSystem graphicsSystem,
- in ODPlatformCanvas platformCanvas,
- in ODBoolean isDynamic,
- in ODBoolean isOffscreen);
-
-
- #ifdef __SOMIDL__
- implementation
- {
- override:
- somInit,
- somUninit,
-
- Purge,
-
- GetGraphicsSystem,
- GetPlatformCanvas,
- GetOwner,
- SetOwner,
- GetFacet,
- SetFacet,
- IsDynamic,
- IsOffscreen,
- GetUpdateShape,
- ResetUpdateShape,
- Invalidate,
- Validate,
- CheckUpdateShape;
-
- releaseorder:
- InitCanvas;
-
- majorversion = 1; minorversion = 0;
-
-
- };
- #endif
- };
-
- #endif //# _CANVAS_
-